home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 223_01 / ferror.c < prev    next >
Text File  |  1980-01-01  |  384b  |  19 lines

  1. /*
  2. ** ferror.c    by     F. A. Scacchitti    11/22/84
  3. **
  4. **    Returns true only if a file error has occurred.
  5. **
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10.    static char c;
  11.  
  12. ferror(fd) int fd; {
  13.  
  14.    c = *(fd + 40);
  15.    return(c == EOF ? FALSE : c);
  16.  
  17. }
  18.  
  19.